home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / MPW Related / Animated Cursors / ShutDown.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-14  |  583 b   |  22 lines  |  [TEXT/MPS ]

  1. /******************************************************************************\
  2. * Header Files
  3. \******************************************************************************/
  4.  
  5. #include "ShutDown.h"
  6. #include "WindowTkl.h"
  7.  
  8.  
  9. #pragma segment Main
  10. /******************************************************************************\
  11. * ShutDown - Do stuff before we quit
  12. *
  13. * ShutDown does all the stuff we need to do before we quit.  It closes all open
  14. * windows.
  15. \******************************************************************************/
  16.  
  17. void
  18. ShutDown ()
  19.     {
  20.     CloseAllWindows ();
  21.     }
  22.